diff options
author | Simon Howard | 2008-09-05 01:19:13 +0000 |
---|---|---|
committer | Simon Howard | 2008-09-05 01:19:13 +0000 |
commit | 8cca9182aef2badfe25cdfe19451903c4016eec0 (patch) | |
tree | 382483fe81afea608fff85ecbd2a8078c058305b | |
parent | 126138bb063f3409702a35c29ef8113f3f722eaa (diff) | |
download | chocolate-doom-8cca9182aef2badfe25cdfe19451903c4016eec0.tar.gz chocolate-doom-8cca9182aef2badfe25cdfe19451903c4016eec0.tar.bz2 chocolate-doom-8cca9182aef2badfe25cdfe19451903c4016eec0.zip |
Add missing Hexen Makefile.am.
Subversion-branch: /branches/raven-branch
Subversion-revision: 1200
-rw-r--r-- | src/hexen/Makefile.am | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/hexen/Makefile.am b/src/hexen/Makefile.am new file mode 100644 index 00000000..7a975790 --- /dev/null +++ b/src/hexen/Makefile.am @@ -0,0 +1,70 @@ + +noinst_LIBRARIES=libhexen.a + +SOURCE_FILES= \ +a_action.c \ + am_data.h \ +am_map.c am_map.h \ +ct_chat.c \ + ct_chat.h \ +d_net.c \ +f_finale.c \ +g_game.c \ + h2def.h \ +h2_main.c \ + i_header.h \ +info.c info.h \ +in_lude.c \ +m_misc.c \ +mn_menu.c \ +p_acs.c \ +p_anim.c \ +p_ceilng.c \ +p_doors.c \ +p_enemy.c \ +p_floor.c \ +p_inter.c \ +p_lights.c \ + p_local.h \ +p_map.c \ +p_maputl.c \ +p_mobj.c \ +po_man.c \ +p_plats.c \ +p_pspr.c \ +p_setup.c \ +p_sight.c \ +p_spec.c p_spec.h \ +p_switch.c \ +p_telept.c \ +p_things.c \ +p_tick.c \ +p_user.c \ +r_bsp.c \ +r_data.c \ +r_draw.c \ + r_local.h \ +r_main.c \ +r_plane.c \ +r_segs.c \ +r_things.c \ +sb_bar.c \ +sc_man.c \ +sn_sonix.c \ +sounds.c sounds.h \ + soundst.h \ +st_start.c st_start.h \ +sv_save.c \ + textdefs.h \ +v_video.c \ +w_wad.c \ + xddefs.h + +EXTRA_DIST= \ +i_cdmus.c i_cdmus.h \ +i_cyber.c \ +i_ibm.c \ +i_sound.c i_sound.h + +libhexen_a_SOURCES=$(SOURCE_FILES) +libhexen_a_CFLAGS=-I.. |