source: Main/trunk/Server/Makefile@ 4

Last change on this file since 4 was 4, checked in by Nishi, on Sep 13, 2024 at 6:39:33 PM

can trim line

  • Property svn:keywords set to Id
File size: 301 bytes
RevLine 
[2]1# $Id: Makefile 4 2024-09-13 09:39:33Z nishi $
2
3include $(PWD)/Platform/$(PLATFORM).mk
4
5.PHONY: all clean
6.SUFFIXES: .c .o
7
[4]8OBJS = version.o main.o config.o
[2]9
10all: tewi$(EXEC)
11
[3]12tewi$(EXEC): $(OBJS) ../Common/common.a
13 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) ../Common/common.a
[2]14
15.c.o:
16 $(CC) $(CFLAGS) -c -o $@ $<
17
18clean:
19 rm -f *.o tewi *.exe
Note: See TracBrowser for help on using the repository browser.