mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
35 lines
562 B
Makefile
35 lines
562 B
Makefile
|
#
|
||
|
# ReactOS welcome/autorun
|
||
|
#
|
||
|
# Makefile
|
||
|
#
|
||
|
# Copyright (C) 2002 The ReactOS Project
|
||
|
|
||
|
PATH_TO_TOP = ..
|
||
|
|
||
|
OBJS = welcome.o
|
||
|
|
||
|
LIBS = -lkernel32 -lgdi32 -luser32
|
||
|
|
||
|
all: welcome.exe autorun.exe
|
||
|
|
||
|
|
||
|
autorun.exe: welcome.o autorun.coff
|
||
|
$(CC) welcome.o autorun.coff \
|
||
|
-Wl,--subsystem,windows \
|
||
|
-lkernel32 -lgdi32 -luser32 -o autorun.exe
|
||
|
|
||
|
welcome.exe: welcome.o welcome.coff
|
||
|
$(CC) welcome.o welcome.coff \
|
||
|
-Wl,--subsystem,windows \
|
||
|
-lkernel32 -lgdi32 -luser32 -o welcome.exe
|
||
|
|
||
|
clean:
|
||
|
$(RM) *.o
|
||
|
$(RM) *.coff
|
||
|
$(RM) *.exe
|
||
|
|
||
|
include $(PATH_TO_TOP)/rules.mak
|
||
|
|
||
|
# EOF
|