mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
added missing .cvsignore and updated makefile
svn path=/trunk/; revision=7330
This commit is contained in:
parent
837f9ed8a7
commit
b8aa4bcd37
2 changed files with 29 additions and 8 deletions
6
reactos/apps/dist/notepad/.cvsignore
vendored
Normal file
6
reactos/apps/dist/notepad/.cvsignore
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
*.o
|
||||
*.d
|
||||
*.exe
|
||||
*.coff
|
||||
*.sym
|
||||
*.map
|
31
reactos/apps/dist/notepad/makefile
vendored
31
reactos/apps/dist/notepad/makefile
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue