mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 12:23:30 +00:00
added missing .cvsignore and updated makefile
svn path=/trunk/; revision=7330
This commit is contained in:
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
*.o
|
||||
*.d
|
||||
*.exe
|
||||
*.coff
|
||||
*.sym
|
||||
*.map
|
||||
Vendored
+23
-8
@@ -1,8 +1,23 @@
|
||||
all:
|
||||
gcc -c notepad.c -o notepad.o
|
||||
windres -i notepad.rc -o res.o
|
||||
gcc notepad.o res.o -o notepad.nostrip.exe -mwindows
|
||||
strip notepad.nostrip.exe -o notepad.exe
|
||||
clean:
|
||||
del *.o
|
||||
del *.exe
|
||||
# $Id: makefile,v 1.3 2003/12/30 14:28:48 weiden Exp $
|
||||
|
||||
PATH_TO_TOP = ../../..
|
||||
|
||||
TARGET_NORC = no
|
||||
|
||||
TARGET_TYPE = program
|
||||
|
||||
TARGET_APPTYPE = windows
|
||||
|
||||
TARGET_NAME = notepad
|
||||
|
||||
TARGET_SDKLIBS = user32.a
|
||||
|
||||
TARGET_OBJECTS = $(TARGET_NAME).o
|
||||
|
||||
TARGET_CFLAGS = -Wall -Werror
|
||||
|
||||
include $(PATH_TO_TOP)/rules.mak
|
||||
|
||||
include $(TOOLS_PATH)/helper.mk
|
||||
|
||||
# EOF
|
||||
|
||||
Reference in New Issue
Block a user